Welcome![Sign In][Sign Up]
Location:
Search - text extraction

Search list

[Special EffectsStrDetect01

Description: 文字识别的结构特征提取子函数。对不同字型的字进行提取。-Character Recognition structural feature extraction Functions. Text of different characters extracted.
Platform: | Size: 1095 | Author: 王兆禹 | Hits:

[Other resourcecodeextraction

Description: text within noisy code extraction
Platform: | Size: 1154 | Author: siyangtao | Hits:

[JSP/Javafacialdas_v1.0

Description: This project aims to distribute a facial animation system with speech, developed to brazilian portuguese case. This system is composed by many modules: movement extraction, facial animation and speech, through a text-to-speech system.
Platform: | Size: 14825330 | Author: 何川 | Hits:

[Other resourceImgTool_2007_11_26

Description: Advanced Image Tool Some Image Processing Functions FlickerFree Image View Speed Zoom/Scroll Efficient Contrast Enhancement/Edge Extraction/Binarization Line/Rcetangle/Text Object Draw Ftp/Http Image Open Load/Save AES Mode Image
Platform: | Size: 695714 | Author: kim S.D. | Hits:

[Windows Developprop200406

Description: 概率句法分析器对于统计自然语言处理的很多高层应用,如统计机器翻译、问答系统、信息抽取、文本挖掘等都是至关重要的,直接决定这些应用系统的最终性能。本系统是一个概率型的Chart分析器。系统的分析算法是采用了多种优化策略。分析结果是概率最大的一棵分析树。在概率模型方面,本系统在一定程度上突破了pcfg的上下文无关假设,引入了结构上下文条件,使得分析结果正确率有了明显提高。在使用宾州中文树库进行的实验中,我们的分析器的标记召回率和标记精确率平均在75%-80%左右。在使用一个短句树库进行的实验中,两个指标都在90%以上。概率句法分析既需要建立合理的概率模型,又需要积累树库等语言资源。我们把所做的一点工作进行开放,就是希望抛弃闭门造车的做法,集思广益,推动这个基础领域的发展,使汉语的句法分析尽早实现实用化-probability syntax analyzer for statistical natural language processing of many senior applications, such as statistical machine translation, quiz systems, information extraction, text mining are essential, these applications directly determine the final performance. The system is a probability - based Chart analyzer. Systematic analysis algorithm is optimized using a variety of strategies. Results of the analysis is the greatest probability of a tree. The probability model, the system to some extent breakthrough in the context of pcfg unrelated to the assumption that the introduction of the context of the structural conditions, making results of the analysis accuracy rate has markedly improved. The use of Chinese tree of Pennsylvania library experiments, the analyzer markers recall rate a
Platform: | Size: 565168 | Author: 江鹏 | Hits:

[File OperateGetUnicode

Description: 看看是否对你有用,字库生成,字模点阵提取,UNICODE查询和转换,二进制文件转文本文件,文本文件转化为二进制文件(一个数组还原为一个BIN文件)-see whether useful to you, font generation, Dot Matrix Printer extraction, UNICODE inquiries and conversion, binary files to text files, text documents into binary files (a reduction of an array BIN file), etc.
Platform: | Size: 243552 | Author: 山于 | Hits:

[Windows Developprop200406

Description: 概率句法分析器对于统计自然语言处理的很多高层应用,如统计机器翻译、问答系统、信息抽取、文本挖掘等都是至关重要的,直接决定这些应用系统的最终性能。本系统是一个概率型的Chart分析器。系统的分析算法是采用了多种优化策略。分析结果是概率最大的一棵分析树。在概率模型方面,本系统在一定程度上突破了pcfg的上下文无关假设,引入了结构上下文条件,使得分析结果正确率有了明显提高。在使用宾州中文树库进行的实验中,我们的分析器的标记召回率和标记精确率平均在75%-80%左右。在使用一个短句树库进行的实验中,两个指标都在90%以上。概率句法分析既需要建立合理的概率模型,又需要积累树库等语言资源。我们把所做的一点工作进行开放,就是希望抛弃闭门造车的做法,集思广益,推动这个基础领域的发展,使汉语的句法分析尽早实现实用化-probability syntax analyzer for statistical natural language processing of many senior applications, such as statistical machine translation, quiz systems, information extraction, text mining are essential, these applications directly determine the final performance. The system is a probability- based Chart analyzer. Systematic analysis algorithm is optimized using a variety of strategies. Results of the analysis is the greatest probability of a tree. The probability model, the system to some extent breakthrough in the context of pcfg unrelated to the assumption that the introduction of the context of the structural conditions, making results of the analysis accuracy rate has markedly improved. The use of Chinese tree of Pennsylvania library experiments, the analyzer markers recall rate a
Platform: | Size: 565248 | Author: 江鹏 | Hits:

[Mathimatics-Numerical algorithmscodeing000

Description: 从空格(ASCII码32)到~(ASCII码126)。表内的第一行与表头相同,下面的每一行都与上一行的内容相同,只是字符相左移动了一个位置。这样,下一行的最后一个字符与上一行的第一个字符相同。 为了进行文本编码,可以任意选择一个字符串,称之为编码字符串,也就是常说的密钥。为解释编码方法,我们假设密钥是Walrus,待编码的文本(即常说的明文)是: Meet me in St. Louis 我们在待编码的文本之上重复书写上述密钥,使得其长度与待编码文本相同: WalrusWalrusWalrusWa Meet me in St. Louis 从上述两行文本中按列对应方式依次提取一个字符,可得到多个字符对:WM、ae、le等,这些字符对可用作上表的索引。这样,依次以这些字符对作为索引可从上表查到一系列字符,这些字符就构成了文本编码,即常说的密文。例如,第W行第M列队应得字符是%,因此编码的第一个字符就是%;第a行第e列对应的字符是G;第l行第e列对应的是R。依次进行上述查找操作,可以得到完整的密文 %Grgua=aVauGLol?eiAU 进行相反的操作就可对该文本解码。 编写编码/解码程序,可以对文本文件或键盘输入的字符串进行编码/解码,在选择编码解码后,需要提示用户输入密钥。 -from space (ASCII 32) to ~ (ASCII 126). The schedule of the first line with the same head table, each of the rows below the previous line with the same content. Character movement is a curator position. So, the next line of characters with a final party on the first character of the same. To text encoding, can choose an arbitrary string, the string as coding, which is often said that the key. To explain the encoding method, we assume that key is Walrus when coding the text (often said that an express) : Meet me in St.. Louis coding in question above the text written above key repeat, making its length and text encoding the same question : WalrusWalrusWalrusWa Meet me in St.. Louis from the above two OK text counterpart way out by the extraction followed a character, a number of characters
Platform: | Size: 2048 | Author: 梁清华 | Hits:

[CSharpResourcePick

Description: 实现.NET中对嵌入资源(图片和文本文件)的提取与使用-achieve.NET embedded resources (photographs and text files) with the use of the extraction
Platform: | Size: 60416 | Author: hehe | Hits:

[Button control20040521191553_ExcelAccessSrc

Description: excel文件转换成文本文件,包括了阴影按钮,和excel文件格式的提取 -excel convert documents into text documents, including a shadow on the button, and excel file format extraction
Platform: | Size: 1488896 | Author: 蔡兆文 | Hits:

[MultiLanguagehtml2txt

Description: 从html文件提取可显示的文本内容。可用于windows和linux环境。-from html document can show that the extraction of text. Available for Windows and Linux environment.
Platform: | Size: 1080320 | Author: YangLin | Hits:

[Otherlongdiyinqing001

Description: 自动在文本框中填写文本,自动点击按钮,并自动将查询结果保存在文本文件里。此程序是针对龙帝引擎的数据提取而写的。-automatically fill in the text box text, automatically click on the button, and automatically search result will be preserved in the text document. This procedure is against the Dragon Dili engine data extraction and write.
Platform: | Size: 116736 | Author: | Hits:

[Special EffectsDXF2MIKE

Description: 专门为MIKE 21定制的提取dxf文件数据点的程序.能够提取AutoCAD dxf文件中的:1.点高程2.Text中的数据3.线(包括Line,Polyline)中的高程数据,三种模式: 1)直接提取直线端点高程2)在直线上进行数据点的加密,然后输出3)输出为模型的水陆边界 -dedicated to the extraction of 21 customized data points dxf document procedures. To extract AutoCAD14 D dxf document : 1. 2.Text point elevation data of three. (including Line, Polyline), the elevation data, three models : 1) direct extraction of straight endpoint Elevation 2) on the line for the encryption of data points, then output 3) output model of the land and sea borders
Platform: | Size: 261120 | Author: 张高 | Hits:

[File OperateMSWord

Description: 基于perl语言实现的MS-Word文档信息提取程序,方便以后进行全文检索-perl language based on the MS-Word document information extraction procedures to facilitate subsequent full-text retrieval
Platform: | Size: 6144 | Author: moonlight | Hits:

[Speech/Voice recognition/combinespeakerrecognition

Description: 语音识别中的两种特征提取方法lpcc和mfcc,还有一个是文本无关的识别算法dtw,另外还有一个是预处理消噪部分的。共享一下,这些都是我调试过的,好用。-Speech Recognition two feature extraction methods and mfcc lpcc. There is a text-independent recognition algorithm dtw, in addition to a pretreatment is part of the noise source. Sharing that those are off the debugging and ease of use.
Platform: | Size: 1024 | Author: 杨洁 | Hits:

[Software Engineeringdatamining03

Description: 文本挖掘的起源 文本挖掘的过程 特征建立 特征集缩减 知识模式提取 模型评价 国内外研究状况 -Text Mining Text Mining the origin of the process of establishing reduced feature set of knowledge extraction model to evaluate the model at home and abroad Research
Platform: | Size: 101376 | Author: kiki9975 | Hits:

[GDI-BitmapPicEdge_DetecAndExtrac

Description: 程序说明 总体功能: 本程序有2个功能。 1.对载入的二值图像提取边缘,并将边缘信息存入指定文本文件。 2.通过功能1中的文本文件在一个打开的pic图像中恢复边缘。 所需输入输出的数据文件: 1.输入一个二值图像,对其进行边缘提取,新建一个文本文件已存入边缘信息,输出此文本。 2.输入步骤2中的文本,通过文本文件输出恢复边缘。 运行方式: 1.打开一个待求二值图。 2.选取“边缘提取”,“轮廓提取”中的4连通或者8连通方法提取边缘。 3.对于已经提取边缘的图像,选取“边缘提取”,“轮廓跟踪”,将边缘信息写入文本文件。 4.新打开一个pic图像,选取“边缘提取”,“加载图像”,然后选取3中的文本文件,恢复边缘。 备注:本文件夹中一个图像跟一个相同名字的文本储存边缘点坐标信息。其中connect4, connect8分别存储4连通和8连-description of the procedures for the overall functions : the procedures are two functions. 1. Right enshrined in the Second Image Edge Extraction and edge information into the designated text files. 2. Through functional version of a document in an open pic edge image restoration. Required input and output data files : 1. Importation of a binary image, its edge extraction, a new text file deposited Edge Information, and the output text. 2. Step 2 importation of the text, through the text file output resume edge. Operation : 1. Seeking to open a binary image. 2. Selected "marginal extraction", "outline drawing of the" connectivity of 4 or 8 connectivity method for extracting edge. 3. Already at risk from the image, select the "marginal extraction", "conto
Platform: | Size: 410624 | Author: 王维杰 | Hits:

[Othertext_sorting

Description: 文本分类概述 王斌老师的经典PPT。信息抽取教程-text classification outlined Bin teachers classic PPT. Information Extraction Directory
Platform: | Size: 124928 | Author: ewewewe | Hits:

[File OperatePDFTest_bemjh

Description: 用c++写的,从一个pdf文件读入,并分析其中的内容,并提取文本内容,并输出文本文件.-with c write from a pdf file into and analyze its content, and extraction of text, and the output text file.
Platform: | Size: 696320 | Author: xiaoma | Hits:

[Special Effectswatermark123

Description: 图像数字水印软件,水印格式可为图像或文本。水印嵌入、提取算法各有dct,dwt两种。-software digital watermarking images, watermarks format for images or text. Watermark embedding and extraction algorithm with Extra, two dwt.
Platform: | Size: 327680 | Author: Amber | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 17 »

CodeBus www.codebus.net